home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / DOCPROC1.ZIP;1 / SAMP-DOC.ZIP / MAIL.DOC < prev    next >
Encoding:
Text File  |  1992-11-08  |  40.0 KB  |  506 lines

  1.                                                                                 
  2.                                                                                 
  3.                                                                                 
  4.                                                                                 
  5.                                                                                 
  6.                                                                                 
  7.                                                                                 
  8.                                                                                 
  9.                                                                                 
  10.                                                                                 
  11.                                                                                 
  12.                                                                                 
  13.                                                                                 
  14.                        *************************************                    
  15.                        *                                   *                    
  16.                        *             M A I L               *                    
  17.                        *  ON THE MVS/XA OPERATING SYSTEM   *                    
  18.                        *                                   *                    
  19.                        *************************************                    
  20.                                                                                 
  21.                                                                                 
  22.                                                                                 
  23.                                                                                 
  24.                                                                                 
  25.                                                                                 
  26.                                                                                 
  27.                                                                                 
  28.                                                                                 
  29.                                                                                 
  30.                                                                                 
  31.                                                                                 
  32.                                                                                 
  33.                                                                                 
  34.                                                                                 
  35.                                                                                 
  36.                                                                                 
  37.                                                                                 
  38.                                                                                 
  39.                                                                                 
  40.                                                                                 
  41.                                                                                 
  42.                                                                                 
  43.                                                                                 
  44.                                                                                 
  45.                                                                                 
  46.                                                                                 
  47.                                                                                 
  48.                                                                                 
  49.                                                                                 
  50.                                                                                 
  51.                                                                                 
  52.                                                                                 
  53.                                                                                 
  54.                                                         John S. Ward
  55.                                                           02/15/93
  56.  
  57. EJECT                                                                           
  58.                                                                                 
  59.                                                                                 
  60.        The transmission of data among users on the AMDAHL 5860 (System D)       
  61.    is possible through the use of TSO/E's Interactive Data Transmission         
  62.    Facility.  This facility provides a TRANSMIT command to send messages        
  63.    and/or data sets to other users and a RECEIVE command to receive them.       
  64.    An activity log of messages and data sets transmitted and received is        
  65.    maintained under each userid.  Nicknames and distribution lists can be       
  66.    established for your convenience.  Userid verification is performed          
  67.    when you attempt to send mail to a userid on System D, and users are         
  68.    notified when they have mail waiting.  For information on how to use         
  69.    this facility to send messages and/or data sets to users connected           
  70.    to the BITNET network, read the handout on BITNET.  For a complete           
  71.    description of this facility, refer to the TSO/E COMMAND LANGUAGE            
  72.    REFERENCE MANUAL - SC28-1134.                                                
  73.                                                                                 
  74.                                                                                 
  75.    TRANSMIT command                                                             
  76.                                                                                 
  77.        The TRANSMIT command is used to send information from one user to        
  78.    another.  This command allows the sending of messages, data sets, or         
  79.    data sets prefixed with messages.  You may send partitioned data sets,       
  80.    a member or members of a partitioned data set, or a sequential data          
  81.    set.  You cannot send data sets with keys or user labels, ISAM data
  82.    sets, or VSAM data sets.  If you want to send a message, issue
  83.    TRANSMIT node.userid without any options.  You will be prompted with
  84.    a screen to type in your message.  When you are finished typing in
  85.    your message, press the PF3 key.  You may terminate TRANSMIT by
  86.    pressing the PA1 key.  If you want to send a data set prefixed with
  87.    a message, type the command "TRANSMIT node.userid MSG DATASET(dsname)".
  88.    You will be prompted with a screen to type in the accompanying message.
  89.                                                                                 
  90.        If you attempt to TRANSMIT to a nonexistent userid on the AMDAHL,        
  91.    the TRANSMIT command is terminated and the following message is sent         
  92.    to the terminal:                                                             
  93.                                                                                 
  94.            INMX151I TRANSMIT TERMINATED DUE TO INVALID USERID userid            
  95.                                                                                 
  96.    If you send mail to a valid userid on the AMDAHL, the following              
  97.    message is sent to the recepient:                                            
  98.                                                                                 
  99.            +GSU001 MAIL WAITING FROM nodename/userid                            
  100.                                                                                 
  101.    This message appears when the recepient logs on if not logged on when        
  102.    the message is sent or when the recepient hits return if already             
  103.    logged on.                                                                   
  104. EJECT                                                                           
  105.        The format of the TRANSMIT command is:                                   
  106.                                                                                 
  107.            TRANSMIT nodename.userid DATASET(dsname) options                     
  108.                                                                                 
  109.        where                                                                    
  110.                                                                                 
  111.            nodename is the name given to an institution's computer.             
  112.                     GSU's AMDAHL running MVS/XA (System D) is GSUMVS1.          
  113.                                                                                 
  114.            userid   is the userid of the person you are trying to               
  115.                     TRANSMIT to.                                                
  116.                                                                                 
  117.            dsname   is the name of the data set you wish to send.  Enclose
  118.                     a fully qualified name in quotes.  This data set may
  119.                     be a partitioned data set, a member or members of           
  120.                     a partitioned data set, or a sequential data set.           
  121.                     You cannot send data sets with keys or user labels,         
  122.                     ISAM data sets, or VSAM data sets.                          
  123.                                                                                 
  124.            options  some frequently used options are described below.           
  125.                                                                                 
  126.        To send a message or data set to more than one user at the same          
  127.    time, enclose the list of names in parentheses as shown below:               
  128.                                                                                 
  129.        TRANSMIT (nodename.userid nodename.userid ...) DATASET(dsname)           
  130.                                                                                 
  131.    or establish a nickname and distribution list using the data set             
  132.    NAMES.TEXT.                                                                  
  133.                                                                                 
  134.        You may issue the TRANSMIT command from the COMMAND line or OPTION       
  135.    line of any ISPF screen by prefixing the command with "TSO" as shown         
  136.    below.                                                                       
  137.                                                                                 
  138.           COMMAND => TSO TRANSMIT nodename.userid DATASET(dsname)               
  139.                                                                                 
  140.        The TRANSMIT command has several options.  A few of the more             
  141.    frequently used options are described below.  You may issue the TSO          
  142.    command "HELP TRANSMIT" for more information, or refer to the TSO/E          
  143.    COMMAND LANGUAGE REFERENCE MANUAL - SC28-1134 for a complete                 
  144.    description.                                                                 
  145.                                                                                 
  146.         DATASET(dsname)     - specifies the name of the data set to be          
  147.                               transmitted.  If this option is not chosen,
  148.                               TRANSMIT will assume you wish to send a           
  149.                               message and will prompt you for the               
  150.                               message.                                          
  151.         MSG                 - specifies that a message is to accompany a        
  152.                               transmitted data set.                             
  153.         COPYLIST            - COPYLIST specifies that a list of the             
  154.          NOCOPYLIST           specified addressees be built and placed as       
  155.                               a prefix to the message being sent or as an       
  156.                               accompanying message if a data set is being       
  157.                               sent.  NOCOPYLIST is the default.
  158.                                                                                 
  159. EJECT                                                                           
  160.         EPILOG              - EPILOG specifies that epilog lines con-           
  161.          NOEPILOG             tained in the NAMES data set be appended to       
  162.                               the message being sent.  EPILOG is the
  163.                               default.
  164.         PROLOG              - PROLOG specifies that prolog lines con-           
  165.          NOPROLOG             tained in the NAMES data set be prefixed to       
  166.                               to the message being sent.  PROLOG is the         
  167.                               default.                                          
  168.         NOTIFY              - NOTIFY specifies that the sender be not-          
  169.          NOTIFY(ALL)          ified when the data is received.                  
  170.          NONOTIFY             NOTIFY(ALL) specifies that the sender be          
  171.                               notified when the data has been received by       
  172.                               all addressees.  NOTIFY(ALL) overrides the
  173.                               :NOTIFY or :NONOTIFY tag in the nickname          
  174.                               section of the NAMES data set.  NOTIFY is         
  175.                               the default.  To be sure that you are
  176.                               notified when every addressee has received        
  177.                               the data, use NOTIFY(ALL).                        
  178.         PDS                 - PDS specifies that a member or members of a       
  179.          SEQUENTIAL           partitioned data set be unloaded before           
  180.                               transmission.  Directory information is
  181.                               preserved, but the receiver is forced to          
  182.                               restore the member(s) into a PDS.                 
  183.                               SEQUENTIAL specifies that a member of a           
  184.                               partitioned data set or a sequential data         
  185.                               set be sent as a sequential data set.             
  186.                               Directory information is not preserved, but       
  187.                               the receiver can restore the data set as          
  188.                               either a sequential data set or a                 
  189.                               partitioned data set.  PDS is the default.
  190.         MEMBERS(list)       - specifies a list of members to be trans-          
  191.                               mitted from the specified partitioned data        
  192.                               set.                                              
  193.         LOG                 - LOG specifies that the transmission be            
  194.          LOG(ALL)             recorded in the LOG data set.  LOG(ALL)           
  195.          NOLOG                will create a log entry for each addressee.       
  196.                               LOG(ALL) overrides NOLOG/NOLOGLST tags in         
  197.                               the NAMES data set.  LOG is the default.          
  198.                                                                                 
  199.    RECEIVE command                                                              
  200.                                                                                 
  201.        The RECEIVE command is used to receive information that has been         
  202.    sent to you from another user.  If you have mail waiting to be               
  203.    received, the following message will appear when you logon or when you       
  204.    hit return if you are logged on when the mail comes in:                      
  205.                                                                                 
  206.            +GSU001 MAIL WAITING FROM nodename/userid                            
  207. EJECT                                                                           
  208.    The format of the RECEIVE command is:                                        
  209.                                                                                 
  210.               RECEIVE                                                           
  211.                                                                                 
  212.    NOTE:  You may issue the RECEIVE command from the COMMAND line or            
  213.           OPTION line of any ISPF screen by prefixing the command with          
  214.           "TSO" as shown below.                                                 
  215.                                                                                 
  216.           COMMAND => TSO RECEIVE                                                
  217.                                                                                 
  218.        If an interactive message has been sent to you it will be                
  219.    displayed on the screen.  You cannot specify a data set to save the          
  220.    message to when you receive it, but a copy of the message is placed in       
  221.    the LOG data set.                                                            
  222.                                                                                 
  223.        If an error-free data set has been sent, the following messages          
  224.    will be displayed when you issue the RECEIVE command (any attached           
  225.    message sent along with the data set would appear first):                    
  226.                                                                                 
  227.        INMR901I Data set 'dsname' from 'userid' on 'nodename'.                  
  228.        INMR906A Enter RESTORE parameters or 'DELETE' or 'END'. +                
  229.                                                                                 
  230.    You may respond with a ? whenever you see a + to get more information        
  231.    about what to do.  If you entered a ? now, you would see:                    
  232.                                                                                 
  233.        INMR908A The input file attributes are: DISORG=_______,RECFM=__,         
  234.                 BLKSIZE=____,LRECL=_____,FILE SIZE = ____  +                    
  235.                                                                                 
  236.    If you again entered a ?, you would see:                                     
  237.                                                                                 
  238.        INMR909A You may enter DSNAME, SPACE, UNIT, VOL, OLD/NEW, or             
  239.                 RESTORE/COPY/DELETE/END                                         
  240.                                                                                 
  241.        If you enter END, the RECEIVE command will terminate leaving             
  242.    the file on the spool to be received at a later time.  If you                
  243.    enter DELETE, the file will be erased from the spool.  If you                
  244.    simply press return at this point, the received data set will be             
  245.    saved in the default data set name.  The default is the same name            
  246.    as the transmitted data set with the high level qualifier changed to         
  247.    your userid.  If you do not want the data set saved to this default          
  248.    name, use the DSNAME option to specify the name of the data set to           
  249.    use.  The format is DSNAME('dsname') where dsname can be the name of a       
  250.    new or existing data set.  Put a fully qualified name in quotes.  If
  251.    the data set already exists and its file attributes do not match those       
  252.    of the incoming file, the RECEIVE command will terminate leaving the         
  253.    file on the spool to be received at a later time.  You may specify the       
  254.    allocation parameters for a new data set or just use the defaults.           
  255.    The default allocation parameters are given on the next page.                
  256. EJECT                                                                           
  257.    PARAMETER          DEFAULT VALUE                                             
  258.                                                                                 
  259.    DSNAME             If the data set was error-free, the default is the        
  260.                       same name as the transmitted data set with the high       
  261.                       level qualifier changed to your userid.  When you         
  262.                       try to RECEIVE data sets containing errors, the           
  263.                       default is your_userid.RECEIVE.INVALID.FILE.              
  264.                                                                                 
  265.    SPACE                                                                        
  266.      primary          default value for primary space allocation is a           
  267.                       size equal to the incoming data                           
  268.      secondary        default value is 2.5% of the primary allocation           
  269.                                                                                 
  270.    TRACKS or          space to be allocated in TRACKS, CYLINDERS, or            
  271.    CYLINDERS or       BLOCKS.  Default is TRACKS.                               
  272.    BLOCKS                                                                       
  273.                                                                                 
  274.    DIRECTORY          this option is only applicable when receiving into        
  275.                       a new partitioned data set.  The default value for        
  276.                       directory blocks when receiving a sequential data         
  277.                       set into a new pds is 27.  The default when               
  278.                       receiving a pds into a pds is the number of blocks        
  279.                       required for the received members.                        
  280.                                                                                 
  281.    NEW or             If a value is not given for SPACE, The data set           
  282.    OLD or             disposition default is OLD.  If that fails, NEW           
  283.    MOD or             is used and SPACE values are added.                       
  284.    SHR                                                                          
  285.                                                                                 
  286.        If you attempt to restore the received data set to a data set that       
  287.    already exists, you will be prompted with the message:                       
  288.                                                                                 
  289.        INMR045I Data set 'dsname' already exists.  Reply 'R'                    
  290.                 to replace it. +                                                
  291.                                                                                 
  292.    Any response other than 'R' will terminate RECEIVE leaving the data          
  293.    set on the spool to be received at a later time.                             
  294.                                                                                 
  295.        If you have successfully restored the received data set, you will        
  296.    see the messages below:                                                      
  297.                                                                                 
  298.        INMR001I Restore successful to data set 'dsname'.                        
  299.        INMR900I ----------------------------------------                        
  300.                                                                                 
  301.        If you have any more data sets or messages to receive, they will         
  302.    appear at this point.  If you have no more messages or data sets             
  303.    to receive, you will see the message:                                        
  304.                                                                                 
  305.        INME000I No more Interactive Data Transmission Facility files are        
  306.                 available for the RECEIVE command to process.                   
  307.                                                                                 
  308. EJECT                                                                           
  309.        When you RECEIVE a data set containing errors, you will see the          
  310.    following messages:                                                          
  311.                                                                                 
  312.    INMR921I Received file appears not to be an Interactive Data Transmissio     
  313.             Facility file.  The first record is: * first record appears her     
  314.    INMR901I Dataset X.RECEIVE.INVALID.FILE from ? on ?                          
  315.    INMR907A Enter COPY parameters or 'DELETE' or 'END.'+                        
  316.                                                                                 
  317.        If you press the return key at this point, the data set will be          
  318.    copied into the default data set 'your_userid.RECEIVE.INVALID.FILE'.         
  319.    If there is already something in 'your_userid.RECEIVE.INVALID.FILE',         
  320.    you will be prompted for permission to overwrite it:                         
  321.                                                                                 
  322.    INMR045I Data set 'RECEIVE.INVALID.FILE' already exists.  Reply 'R'          
  323.             to replace it. +                                                    
  324.                                                                                 
  325.        If you do not want the received file saved in the default file, do       
  326.    not press return when prompted to enter copy parameters.  Instead, use       
  327.    the "DSNAME" option to specify the name of the data set to use.  If          
  328.    the file attributes of this data set do not match those of the file          
  329.    you are attempting to receive, RECEIVE will terminate leaving the file       
  330.    on the spool to be received at a later time.                                 
  331.                                                                                 
  332.        For more information on the RECEIVE command, you may issue the           
  333.    TSO command "HELP RECEIVE" or refer to the TSO/E COMMAND LANGUAGE            
  334.    REFERENCE MANUAL - SC28-1134.                                                
  335.                                                                                 
  336.                                                                                 
  337.    ACTIVITY LOG OF TRANSMIT AND RECEIVE                                         
  338.                                                                                 
  339.        The TRANSMIT and RECEIVE commands will ordinarily log every              
  340.    message and file transmitted and received to the data set                    
  341.    your_userid.LOG1.LOGSET.  The entire text of any message transmitted         
  342.    or received will be stored in this data set, but only the name of the        
  343.    data set transmitted or received will be stored in the log.  The NOLOG       
  344.    option on the TRANSMIT command will cause the transmitted message or         
  345.    data set name not to be logged to this log data set.                         
  346.                                                                                 
  347.         You can specify the name of the log data set through the :LOGNAME       
  348.    tag in the control section or in nickname definitions of the NAMES           
  349.    data set.  You can have more than one log data set, but they must all
  350.    have the DCB attributes LRECL=255, BLKSIZE=3120, and RECFM=VB.
  351.                                                                                 
  352.                                                                                 
  353.    NICKNAME AND DISTRIBUTION LISTS                                              
  354.                                                                                 
  355.        A user can define up to 10 data sets which contain synonyms for          
  356.    node.userid and distribution lists.  The name of the primary NAMES           
  357.    data set must be your_userid.NAMES.TEXT.  This data set will                 
  358.    contain the names of any other NAMES data sets.                              
  359. EJECT                                                                           
  360.        The NAMES data set is composed of two sections -- the control            
  361.    section and the nicknames section.  The control section comes first          
  362.    and ends with the first :nick tag.  The control section can contain          
  363.    tags specifying names of other NAMES data sets, epilog and prolog            
  364.    lines to be appended to all transmitted messages, and names of other         
  365.    LOG data sets.  There are no required tags for the control section.          
  366.    The only defaults if not otherwise specified in the control section          
  367.    are :LOG and :NOTIFY.                                                        
  368.                                                                                 
  369.        The nicknames section consists of nickname entries which begin           
  370.    with the :NICK tag.  The nicknames section includes tags specifying          
  371.    nicknames for userid, the node name that the userid is on, text names        
  372.    and addresses associated with each nickname, and distribution lists.         
  373.    The only required tags in the nicknames section are :NICK, :USERID,          
  374.    and :NODE.                                                                   
  375.                                                                                 
  376.    All tags have the format:                                                    
  377.                                                                                 
  378.           :tagname.operand                                                      
  379.                                                                                 
  380.    Note:  The : preceeding the tag name and the  "."  following the tag name
  381.           are required.
  382.                                                                                 
  383.        The control section may contain any or all (or none) of the              
  384.    following tags:                                                              
  385.                                                                                 
  386.        :ALTCTL.dsname                                                           
  387.                                                                                 
  388.               This tag specifies the fully qualified name of another            
  389.               data set to use in looking up nicknames.  There can be            
  390.               up to a maximum of ten :ALTCTL tags.  TRANSMIT will               
  391.               scan the data sets in the order listed.  Control section          
  392.               tags in these secondary NAMES data sets are ignored.              
  393.                                                                                 
  394.        :EPILOG.text                                                             
  395.                                                                                 
  396.               This tag specifies a line of text to be appended to the           
  397.               end of any transmitted message.  The maximum length of            
  398.               the epilog line is 72 characters and there can be up              
  399.               to ten :EPILOG lines.  These lines will be appended in            
  400.               the same order as they are in the data set.  The NOEPILOG         
  401.               option of the TRANSMIT command will cause these epilog            
  402.               lines not to be appended to the current message.                  
  403.                                                                                 
  404.        :PROLOG.text                                                             
  405.                                                                                 
  406.               This tag specifies a line of text to be prefixed to the           
  407.               beginning of any transmitted message.  The maximum length         
  408.               of the prolog line is 72 characters and there can be up to        
  409.               ten :PROLOG lines.  These lines will be prefixed in the           
  410.               same order as they are in the data set.  The NOPROLOG             
  411.               option of the TRANSMIT command will cause these prolog            
  412.               lines not to be prefixed to the current message.                  
  413. EJECT                                                                           
  414.        :LOGNAME.dsname                                                          
  415.                                                                                 
  416.               This tag specifies the default qualifier for the log data         
  417.               set name.  If :LOGNAME is specified in a nickname entry,          
  418.               that entry overrides the default entry in the control             
  419.               section.                                                          
  420.                                                                                 
  421.        :LOG or :NOLOG                                                           
  422.                                                                                 
  423.               This tag controls the logging of entries into the log file        
  424.               for addressees specified by node.userid in the TRANSMIT           
  425.               command and for nicknames which do not specify a :LOG or          
  426.               :NOLOG.  A :LOG or :NOLOG tag specified in the nicknames          
  427.               section will override the default set in the control              
  428.               section.  The LOG, LOG(ALL) or NOLOG option on the TRANSMIT
  429.               command overrides any default in the NAMES data set.
  430.                                                                                 
  431.        :NOTIFY or :NONOTIFY                                                     
  432.                                                                                 
  433.               This tag controls the notification that the addresses             
  434.               specified by node.userid and the nicknames without a              
  435.               :NOTIFY or :NONOTIFY tag have received the transmitted            
  436.               data.  A :NOTIFY or :NONOTIFY tag in the nicknames section        
  437.               overrides this default.  The NOTIFY, NOTIFY(ALL) or               
  438.               NONOTIFY option on the TRANSMIT command overrides any             
  439.               default in the NAMES data set.                                    
  440.                                                                                 
  441.                                                                                 
  442.        The nicknames section consists of nickname entries which begin           
  443.    with the :NICK tag.  The following tags can be used:                         
  444.                                                                                 
  445.        :NICK.nickname                                                           
  446.                                                                                 
  447.               Nicknames can be 1 to 8 alphanumeric characters in length         
  448.               and are used to begin a new entry in the nicknames section.       
  449.                                                                                 
  450.        :NOTIFY or :NONOTIFY                                                     
  451.                                                                                 
  452.               This tag will override any default set in the control             
  453.               section but will be overridden if the NOTIFY, NOTIFY(ALL),        
  454.               or NONOTIFY option of the TRANSMIT command is used.               
  455.                                                                                 
  456.        :NODE.nodeid                                                             
  457.                                                                                 
  458.               This tag specifies a network node name for the nickname           
  459.               entry.                                                            
  460.                                                                                 
  461.        :USERID.userid                                                           
  462.                                                                                 
  463.               This tag specifies the userid of the user specified in the        
  464.               :NICK tag.  :LIST or :CC may not be used in the same entry        
  465.               when :USERID is used.                                             
  466. EJECT                                                                           
  467.        :LOG or :NOLOG                                                           
  468.                                                                                 
  469.               This tag will override any default set in the control             
  470.               section but will be overridden if the LOG or NOLOG option         
  471.               of the TRANSMIT command is used.                                  
  472.                                                                                 
  473.        :LOGLST or :NOLOGLST                                                     
  474.                                                                                 
  475.               This tag is used when the nickname entry specifies a              
  476.               distribution list rather than an individual.  It specifies        
  477.               whether or not a log entry should be made for every               
  478.               addressee in the list.                                            
  479.                                                                                 
  480.        :NAME.username                                                           
  481.                                                                                 
  482.               This tag contains a text name of the user or group being          
  483.               defined in the :NICK entry.  This name can be a maximum of        
  484.               30 characters long and will appear in the copylist and log        
  485.               entries, if any, for this nickname.                               
  486.                                                                                 
  487.        :ADDR.address                                                            
  488.                                                                                 
  489.               This tag specifies the address of the user or group being         
  490.               defined in the :NICK entry.  You must separate individual         
  491.               address lines by semicolons.                                      
  492.                                                                                 
  493.        :LIST.name name-list                                                     
  494.                                                                                 
  495.               This tag is used to specify a distribution list of                
  496.               addressees.  The list of names can be either nicknames or
  497.               node.userid or the name of another distribution list.
  498.                                                                                 
  499.        :CC.name name-list                                                       
  500.                                                                                 
  501.               This tag is a synonym to the :LIST tag.                           
  502.                                                                                 
  503.        For more information, you may enter the TSO command HELP NICKNAME        
  504.    or HELP NICKNAME OPERAND(:tagname).  You may also refer to the TSO/E         
  505.    COMMAND LANGUAGE REFERENCE MANUAL - SC28-1134.                               
  506.